home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / PLOT.SM < prev    next >
Text File  |  1994-10-19  |  350b  |  11 lines

  1. #    this is demo of plot(y,x), paraplot(x(t),y(t),t), polaplot(r(t),t),
  2. #    dataplot([x1,x2],[y1,y2]), listplot([y1,y2])
  3.  
  4. graph
  5. plot(x^3,x)
  6. paraplot(sin(t),sin(2*t),t)    # parametric curve of x=sin(t) and y=sin(2*t)
  7. polaplot(1,t)            # polar plot of r=1
  8. dataplot([1,2,3],[1,4,9])    # plot a set of data
  9. listplot([1,4,9])        # plot a list of data 
  10. text
  11.